100
How do I change the visual aspect for thumb parts in the scroll bars, using EBN

with AxExFileView1 do
begin
	VisualAppearance.Add(1,'c:\exontrol\images\normal.ebn');
	VisualAppearance.Add(2,'c:\exontrol\images\pushed.ebn');
	VisualAppearance.Add(3,'c:\exontrol\images\hot.ebn');
	set_Background(EXFILEVIEWLib.BackgroundPartEnum.exHSThumb,$1000000);
	set_Background(EXFILEVIEWLib.BackgroundPartEnum.exHSThumbP,$2000000);
	set_Background(EXFILEVIEWLib.BackgroundPartEnum.exHSThumbH,$3000000);
	set_Background(EXFILEVIEWLib.BackgroundPartEnum.exVSThumb,$1000000);
	set_Background(EXFILEVIEWLib.BackgroundPartEnum.exVSThumbP,$2000000);
	set_Background(EXFILEVIEWLib.BackgroundPartEnum.exVSThumbH,$3000000);
	ColumnAutoResize := False;
	set_ColumnWidth('Name',256);
end
99
How do I change the visual aspect only for the thumb in the scroll bar, using EBN

with AxExFileView1 do
begin
	VisualAppearance.Add(1,'c:\exontrol\images\normal.ebn');
	VisualAppearance.Add(2,'c:\exontrol\images\pushed.ebn');
	VisualAppearance.Add(3,'c:\exontrol\images\hot.ebn');
	set_Background(EXFILEVIEWLib.BackgroundPartEnum.exHSThumb,$1000000);
	set_Background(EXFILEVIEWLib.BackgroundPartEnum.exHSThumbP,$2000000);
	set_Background(EXFILEVIEWLib.BackgroundPartEnum.exHSThumbH,$3000000);
	ColumnAutoResize := False;
	set_ColumnWidth('Name',256);
end
98
How to check whether the control hides the three-letter file-name extensions for certain files, reducing clutter in folder windows

with AxExFileView1 do
begin
	set_Option(EXFILEVIEWLib.OptionEnum.exHideFileExtensionsForKnownFileTypes,TObject(True));
	Refresh();
end
97
How can I change the date format in the Modified column

with AxExFileView1 do
begin
	set_Option(EXFILEVIEWLib.OptionEnum.exModifiedDateFormat,'yyyyy ');
	set_Option(EXFILEVIEWLib.OptionEnum.exModifiedTimeFormat,'hh:mm');
	Refresh();
end
96
How can I change the date format in the Modified column

with AxExFileView1 do
begin
	set_Option(EXFILEVIEWLib.OptionEnum.exModifiedDateFormat,'ddd, MMM dd yy');
	Refresh();
end
95
How can I change the format of the caption that's shown in the Modified column, if ModifiedDaysAgo property is used

with AxExFileView1 do
begin
	ModifiedDaysAgo := 356;
	set_Option(EXFILEVIEWLib.OptionEnum.exModifiedDaysAgo,'vor %i Tagen');
	Refresh();
end
94
How can I change the "today" caption that's shown in the Modified column

with AxExFileView1 do
begin
	ModifiedDaysAgo := 356;
	set_Option(EXFILEVIEWLib.OptionEnum.exModifiedToday,'__ new today __');
	Refresh();
end
93
Is there any way to rename a column

with AxExFileView1 do
begin
	set_ColumnCaption('Name','__ new name __');
end
92
Is there any option to exclude folders that match a pattern

with AxExFileView1 do
begin
	ExcludeFolderFilter := 'W*';
end
91
Is there any option to include only folders that match a pattern

with AxExFileView1 do
begin
	IncludeFolderFilter := 'W*';
end
90
How can I include files when folders are expanded

with AxExFileView1 do
begin
	ExpandFolders := True;
	IncludeFilesInFolder := True;
end
89
How do I get the file or folder from the cursor
// MouseMove event - Occurs when the user moves the mouse.
procedure TWinForm1.AxExFileView1_MouseMoveEvent(sender: System.Object; e: AxEXFILEVIEWLib._IExFileViewEvents_MouseMoveEvent);
begin
	with AxExFileView1 do
	begin
		OutputDebugString( get_FileFromPoint(-1,-1) );
	end
end;

with AxExFileView1 do
begin
	OutputDebugString( get_FileFromPoint(-1,-1) );
end
88
How can I expand programatically a folder

with AxExFileView1 do
begin
	ExpandFolders := True;
	Expand('WINNT');
end
87
Is there any option to remove the tooltip when the cursor hovers the column's drop down filter window

with AxExFileView1 do
begin
	set_ColumnFilterButton('Name',True);
	set_Description(EXFILEVIEWLib.DescriptionTypeEnum.exFilterBarFilterTitle,'');
	set_Description(EXFILEVIEWLib.DescriptionTypeEnum.exFilterBarPatternFilterTitle,'');
	set_Description(EXFILEVIEWLib.DescriptionTypeEnum.exFilterBarTooltip,'');
	set_Description(EXFILEVIEWLib.DescriptionTypeEnum.exFilterBarPatternTooltip,'');
	set_Description(EXFILEVIEWLib.DescriptionTypeEnum.exFilterBarFilterForTooltip,'');
end
86
How can I change the "Filter For" caption in the column's drop down filter window

with AxExFileView1 do
begin
	set_ColumnFilterButton('Name',True);
	set_Description(EXFILEVIEWLib.DescriptionTypeEnum.exFilterBarFilterForCaption,'new caption');
end
85
How do I change the "All" caption in the drop down filter window

with AxExFileView1 do
begin
	set_ColumnFilterButton('Name',True);
	set_Description(EXFILEVIEWLib.DescriptionTypeEnum.exFilterBarAll,'new name for (All)');
end
84
How do I sort a column

with AxExFileView1 do
begin
	Sort('Name',False);
end
83
How do I change the font in the filter bar

with AxExFileView1 do
begin
	set_ColumnFilterButton('Name',True);
	set_ColumnFilterType('Name',EXFILEVIEWLib.FilterTypeEnum.exPattern);
	set_ColumnFilter('Name','*.exe|*.com|*.bat');
	ApplyFilter();
	FilterBarFont.Name := 'Verdana';
end
82
How do I change the visual appearanceof the filter bar

with AxExFileView1 do
begin
	VisualAppearance.Add(1,'c:\exontrol\images\normal.ebn');
	set_ColumnFilterButton('Name',True);
	set_ColumnFilterType('Name',EXFILEVIEWLib.FilterTypeEnum.exPattern);
	set_ColumnFilter('Name','*.exe|*.com|*.bat');
	ApplyFilter();
	(GetOcx() as EXFILEVIEWLib.ExFileView).FilterBarBackColor := $1000000;
end
81
How do I change the color in the filter bar

with AxExFileView1 do
begin
	set_ColumnFilterButton('Name',True);
	set_ColumnFilterType('Name',EXFILEVIEWLib.FilterTypeEnum.exPattern);
	set_ColumnFilter('Name','*.exe|*.com|*.bat');
	ApplyFilter();
	FilterBarBackColor := Color.FromArgb(255,0,0);
end
80
How do I change the color in the filter bar

with AxExFileView1 do
begin
	set_ColumnFilterButton('Name',True);
	set_ColumnFilterType('Name',EXFILEVIEWLib.FilterTypeEnum.exPattern);
	set_ColumnFilter('Name','*.exe|*.com|*.bat');
	ApplyFilter();
	FilterBarForeColor := Color.FromArgb(255,0,0);
end
79
How do I specify the height of the filter bar

with AxExFileView1 do
begin
	set_ColumnFilterButton('Name',True);
	set_ColumnFilterType('Name',EXFILEVIEWLib.FilterTypeEnum.exPattern);
	set_ColumnFilter('Name','*.exe|*.com|*.bat');
	ApplyFilter();
	FilterBarHeight := 32;
end
78
How do I remove or clear the filter
with AxExFileView1 do
begin
	set_ColumnFilterButton('Name',True);
	set_ColumnFilterType('Name',EXFILEVIEWLib.FilterTypeEnum.exPattern);
	set_ColumnFilter('Name','*.exe|*.com|*.bat');
	ApplyFilter();
	ClearFilter();
end
77
How do I change the caption in the filter bar

with AxExFileView1 do
begin
	set_ColumnFilterButton('Name',True);
	set_ColumnFilterType('Name',EXFILEVIEWLib.FilterTypeEnum.exPattern);
	set_ColumnFilter('Name','*.exe|*.com|*.bat');
	ApplyFilter();
	FilterBarCaption := 'new filter';
end
76
How do I filter a column

with AxExFileView1 do
begin
	set_ColumnFilterButton('Name',True);
	set_ColumnFilterType('Name',EXFILEVIEWLib.FilterTypeEnum.exPattern);
	set_ColumnFilter('Name','*.exe|*.com|*.bat');
	ApplyFilter();
end
75
How can I enlarge the height of the drop down filter window

with AxExFileView1 do
begin
	set_ColumnFilterButton('Name',True);
	FilterBarDropDownHeight := '-256';
end
74
How do I remove or clear my own filters

with AxExFileView1 do
begin
	set_ColumnFilterButton('Name',True);
	AddColumnCustomFilter('Name','(Executable files)','*.exe|*.com|*.bat');
	ClearColumnCustomFilters('Name');
end
73
How do I specify my own filters

with AxExFileView1 do
begin
	set_ColumnFilterButton('Name',True);
	AddColumnCustomFilter('Name','(Executable files)','*.exe|*.com|*.bat');
end
72
How can I enlarge the width of the drop down filter window

with AxExFileView1 do
begin
	set_ColumnFilterButton('Name',True);
	set_FilterBarDropDownWidth('Name',2);
end
71
How can I enlarge the width of the drop down filter window

with AxExFileView1 do
begin
	set_ColumnFilterButton('Name',True);
	set_FilterBarDropDownWidth('Name','-256');
end
70
How can I enable filtering the folders and files

with AxExFileView1 do
begin
	set_ColumnFilterButton('Name',True);
end
69
How do I display in the Modified column, the number of days since the file or folder was changed

with AxExFileView1 do
begin
	ModifiedDaysAgo := 356;
end
68
How do I stop programatically the searching
with AxExFileView1 do
begin
	StopSearch();
end
67
How do I search or find files

with AxExFileView1 do
begin
	Search := 'A*.A*';
end
66
How can I expand or collapse a folder, when the user double clicks it

with AxExFileView1 do
begin
	ExpandFolders := True;
	ExpandOnDblClk := True;
end
65
How can I change the default icon being displayed for parent folders

with AxExFileView1 do
begin
	LoadIcon(AxExFileView1.ExecuteTemplate('loadpicture(`c:\exontrol\images\week.ico`)'),1234);
	IncludeParentIconKey := 1234;
end
64
How can I show only folders

with AxExFileView1 do
begin
	IncludeFiles := False;
end
63
How can I show or hide the expand/collapse buttons

with AxExFileView1 do
begin
	ExpandFolders := True;
	HasLines := True;
	HasLinesAtRoot := True;
	HasButtons := False;
end
62
How can I show the lines at root

with AxExFileView1 do
begin
	ExpandFolders := True;
	HasLines := True;
	HasLinesAtRoot := True;
end
61
How can I show the lines between child and parents

with AxExFileView1 do
begin
	ExpandFolders := True;
	HasLines := True;
end
60
Is there any option to add an expand or collapse (+/-) buttons left to each folder

with AxExFileView1 do
begin
	ExpandFolders := True;
end
59
How do I show or hide the first item that shows when I browse new folders

with AxExFileView1 do
begin
	IncludeParent := EXFILEVIEWLib.IncludeParentEnum.exNoIncludeParent;
end
58
How do I enable or disable renaming the folders and files
with AxExFileView1 do
begin
	AllowRename := True;
end
57
How do I change the width of the columns

with AxExFileView1 do
begin
	ColumnAutoResize := False;
	set_ColumnWidth('Name',256);
end
56
How do I change the width of the columns

with AxExFileView1 do
begin
	set_ColumnWidth('Name',256);
end
55
How do I show or hide a column

with AxExFileView1 do
begin
	set_ColumnVisible('Type',False);
end
54
How can I get the path of the browsed folder
with AxExFileView1 do
begin
	BrowseFolderPath := 'C:\Temp';
end
53
The Change event is not fired. What can I do
with AxExFileView1 do
begin
	ChangeNotification := True;
end
52
How do I execute a command from the file's content menu (sample 1)

with AxExFileView1 do
begin
	BeginUpdate();
	ExploreFromHere := '';
	ExecuteContextCommand('C:\',True,'Properties');
	EndUpdate();
end
51
How do I change the width of the columns

with AxExFileView1 do
begin
	ColumnAutoResize := False;
	set_ColumnWidth('Name',256);
end
50
How can I refresh automatically the control so it reflect the changes in the browsed folder
with AxExFileView1 do
begin
	AutoUpdate := True;
end
49
May I disable the control's content menu, that's displayed when the user does right click
with AxExFileView1 do
begin
	AllowMenuContext := False;
end
48
How do I refresh the control
with AxExFileView1 do
begin
	Refresh();
end
47
How do I enable single or multiple selection

with AxExFileView1 do
begin
	SingleSel := False;
end
46
Can I display only all execpts the *.exe and *.com files using wild characters

with AxExFileView1 do
begin
	ExcludeFilter := '*.exe *.com *.bat';
end
45
Can I display only *.exe and *.com files using wild characters

with AxExFileView1 do
begin
	IncludeFilter := '*.exe *.com *.bat';
end
44
Can I change the folder being explored
with AxExFileView1 do
begin
	ExploreFromHere := 'c:\Program Files';
end
43
Can I display only files

with AxExFileView1 do
begin
	IncludeFolders := False;
end
42
How can I change the default icon being displayed for specified folders

with AxExFileView1 do
begin
	LoadIcon(AxExFileView1.ExecuteTemplate('loadpicture(`c:\exontrol\images\week.ico`)'),1234);
	with FileTypes.Add('W*') do
	begin
		Folder := True;
		IconIndex := 1234;
		Bold := True;
		Apply();
	end;
end
41
How can I change the default icon being displayed for specified files

with AxExFileView1 do
begin
	LoadIcon(AxExFileView1.ExecuteTemplate('loadpicture(`c:\exontrol\images\week.ico`)'),1234);
	with FileTypes.Add('*.bat *.com *.exe') do
	begin
		IconIndex := 1234;
		Apply();
	end;
end
40
How can I change the default icon being displayed for files

with AxExFileView1 do
begin
	LoadIcon(AxExFileView1.ExecuteTemplate('loadpicture(`c:\exontrol\images\week.ico`)'),1234);
	with FileTypes.Add('*') do
	begin
		IconIndex := 1234;
		Apply();
	end;
end
39
How can I change the default icon being displayed for folders

with AxExFileView1 do
begin
	LoadIcon(AxExFileView1.ExecuteTemplate('loadpicture(`c:\exontrol\images\week.ico`)'),1234);
	with FileTypes.Add('*') do
	begin
		Folder := True;
		IconIndex := 1234;
		Apply();
	end;
end
38
Does your control support partial check feature, so a parent item gets checked when all its child items are checked

with AxExFileView1 do
begin
	HasCheckBox := EXFILEVIEWLib.CheckBoxEnum.PartialCheckBox;
	ExpandFolders := True;
end
37
Can I add a checkbox to each file or folder

with AxExFileView1 do
begin
	HasCheckBox := EXFILEVIEWLib.CheckBoxEnum.CheckBox;
end
36
How do I put a picture on the center of the control

with AxExFileView1 do
begin
	(GetOcx() as EXFILEVIEWLib.ExFileView).Picture := AxExFileView1.ExecuteTemplate('loadpicture(`c:\exontrol\images\zipdisk.gif`)');
	PictureDisplay := EXFILEVIEWLib.PictureDisplayEnum.MiddleCenter;
end
35
How do I resize/stretch a picture on the control's background

with AxExFileView1 do
begin
	(GetOcx() as EXFILEVIEWLib.ExFileView).Picture := AxExFileView1.ExecuteTemplate('loadpicture(`c:\exontrol\images\zipdisk.gif`)');
	PictureDisplay := EXFILEVIEWLib.PictureDisplayEnum.Stretch;
end
34
How do I put a picture on the control's center right bottom side

with AxExFileView1 do
begin
	(GetOcx() as EXFILEVIEWLib.ExFileView).Picture := AxExFileView1.ExecuteTemplate('loadpicture(`c:\exontrol\images\zipdisk.gif`)');
	PictureDisplay := EXFILEVIEWLib.PictureDisplayEnum.LowerRight;
end
33
How do I put a picture on the control's center left bottom side

with AxExFileView1 do
begin
	(GetOcx() as EXFILEVIEWLib.ExFileView).Picture := AxExFileView1.ExecuteTemplate('loadpicture(`c:\exontrol\images\zipdisk.gif`)');
	PictureDisplay := EXFILEVIEWLib.PictureDisplayEnum.LowerLeft;
end
32
How do I put a picture on the control's center top side

with AxExFileView1 do
begin
	(GetOcx() as EXFILEVIEWLib.ExFileView).Picture := AxExFileView1.ExecuteTemplate('loadpicture(`c:\exontrol\images\zipdisk.gif`)');
	PictureDisplay := EXFILEVIEWLib.PictureDisplayEnum.UpperCenter;
end
31
How do I put a picture on the control's right top corner

with AxExFileView1 do
begin
	(GetOcx() as EXFILEVIEWLib.ExFileView).Picture := AxExFileView1.ExecuteTemplate('loadpicture(`c:\exontrol\images\zipdisk.gif`)');
	PictureDisplay := EXFILEVIEWLib.PictureDisplayEnum.UpperRight;
end
30
How do I put a picture on the control's left top corner

with AxExFileView1 do
begin
	(GetOcx() as EXFILEVIEWLib.ExFileView).Picture := AxExFileView1.ExecuteTemplate('loadpicture(`c:\exontrol\images\zipdisk.gif`)');
	PictureDisplay := EXFILEVIEWLib.PictureDisplayEnum.UpperLeft;
end
29
How do I put a picture on the control's background

with AxExFileView1 do
begin
	(GetOcx() as EXFILEVIEWLib.ExFileView).Picture := AxExFileView1.ExecuteTemplate('loadpicture(`c:\exontrol\images\zipdisk.gif`)');
end
28
How do I change the control's border, using your EBN files

with AxExFileView1 do
begin
	VisualAppearance.Add(1,'c:\exontrol\images\hot.ebn');
	Appearance := EXFILEVIEWLib.AppearanceEnum($1000000);
	BackColor := Color.FromArgb(255,255,255);
end
27
How do I remove the control's border

with AxExFileView1 do
begin
	Appearance := EXFILEVIEWLib.AppearanceEnum.None2;
end
26
How can I change the foreground color of the control's header

with AxExFileView1 do
begin
	ForeColorHeader := Color.FromArgb(255,0,0);
end
25
How can I change the background color of the control's header

with AxExFileView1 do
begin
	BackColorHeader := Color.FromArgb(255,255,0);
	HeaderAppearance := EXFILEVIEWLib.AppearanceEnum.Flat;
end
24
How can I change the visual appearance of the header, using EBN files

with AxExFileView1 do
begin
	VisualAppearance.Add(1,'c:\exontrol\images\normal.ebn');
	(GetOcx() as EXFILEVIEWLib.ExFileView).BackColorHeader := $1000000;
end
23
How can I change the header's appearance

with AxExFileView1 do
begin
	HeaderAppearance := EXFILEVIEWLib.AppearanceEnum.Flat;
end
22
How do I disable the control
with AxExFileView1 do
begin
	Enabled := False;
end
21
How do I change the visual appearance effect for the selected item, using EBN

with AxExFileView1 do
begin
	VisualAppearance.Add(1,'c:\exontrol\images\normal.ebn');
	(GetOcx() as EXFILEVIEWLib.ExFileView).SelBackColor := $1000000;
	SelForeColor := Color.FromArgb(0,0,0);
end
20
How do I change the colors for the selected item

with AxExFileView1 do
begin
	SelBackColor := Color.FromArgb(0,0,0);
end
19
How can I change the control's font

with AxExFileView1 do
begin
	Font.Name := 'Tahoma';
end
18
How do I show or hide the control's header bar

with AxExFileView1 do
begin
	HeaderVisible := False;
end
17
How do I change the control's foreground color

with AxExFileView1 do
begin
	ForeColor := Color.FromArgb(120,120,120);
end
16
How do I change the control's background color

with AxExFileView1 do
begin
	BackColor := Color.FromArgb(200,200,200);
end
15
How do I prevent painting the control while multiple changes occur
with AxExFileView1 do
begin
	BeginUpdate();
	ForeColor := Color.FromArgb(255,0,0);
	BackColor := Color.FromArgb(255,255,255);
	EndUpdate();
end
14
How do I change the height of the items

with AxExFileView1 do
begin
	DefaultItemHeight := 13;
	Refresh();
end
13
How do I enable resizing the columns at runtime

with AxExFileView1 do
begin
	ColumnsAllowSizing := True;
end
12
How do I call your x-script language

with AxExFileView1 do
begin
	ExecuteTemplate('BackColor = RGB(255,0,0)');
end
11
How do I call your x-script language

with AxExFileView1 do
begin
	Template := 'BackColor = RGB(255,0,0)';
end
10
Can I change the order of the buttons in the scroll bar

with AxExFileView1 do
begin
	set_ScrollOrderParts(EXFILEVIEWLib.ScrollBarEnum.exHScroll,'t,l,r');
	set_ScrollOrderParts(EXFILEVIEWLib.ScrollBarEnum.exVScroll,'t,l,r');
	ColumnAutoResize := False;
	set_ColumnWidth('Name',256);
end
9
The thumb size seems to be very small. Can I make it bigger

with AxExFileView1 do
begin
	set_ScrollThumbSize(EXFILEVIEWLib.ScrollBarEnum.exHScroll,64);
	ColumnAutoResize := False;
	set_ColumnWidth('Name',256);
end
8
How do I enlarge or change the size of the control's scrollbars

with AxExFileView1 do
begin
	ScrollHeight := 18;
	ScrollWidth := 18;
	ScrollButtonWidth := 18;
	ScrollButtonHeight := 18;
	ColumnAutoResize := False;
	set_ColumnWidth('Name',256);
end
7
How do I assign a tooltip to a scrollbar

with AxExFileView1 do
begin
	set_ScrollToolTip(EXFILEVIEWLib.ScrollBarEnum.exHScroll,'This is a tooltip being shown when you click and drag the thumb in the vetrical scroll bar');
	set_ScrollPartCaption(EXFILEVIEWLib.ScrollBarEnum.exHScroll,EXFILEVIEWLib.ScrollPartEnum.exThumbPart,'This is just a text');
	get_ScrollFont(EXFILEVIEWLib.ScrollBarEnum.exVScroll).Size := 12;
	ScrollWidth := 20;
	set_ScrollThumbSize(EXFILEVIEWLib.ScrollBarEnum.exVScroll,148);
	ColumnAutoResize := False;
	set_ColumnWidth('Name',256);
end
6
I need to add a button in the scroll bar. Is this possible

with AxExFileView1 do
begin
	set_ScrollPartVisible(EXFILEVIEWLib.ScrollBarEnum.exHScroll,EXFILEVIEWLib.ScrollPartEnum.exLeftB1Part,True);
	set_ScrollPartCaption(EXFILEVIEWLib.ScrollBarEnum.exHScroll,EXFILEVIEWLib.ScrollPartEnum.exLeftB1Part,'1');
	ColumnAutoResize := False;
	set_ColumnWidth('Name',256);
end
5
Can I display an additional buttons in the scroll bar

with AxExFileView1 do
begin
	set_ScrollPartVisible(EXFILEVIEWLib.ScrollBarEnum.exHScroll,EXFILEVIEWLib.ScrollPartEnum.exLeftB1Part,True);
	set_ScrollPartVisible(EXFILEVIEWLib.ScrollBarEnum.exHScroll,EXFILEVIEWLib.ScrollPartEnum.exLeftB2Part,True);
	set_ScrollPartVisible(EXFILEVIEWLib.ScrollBarEnum.exHScroll,EXFILEVIEWLib.ScrollPartEnum.exRightB6Part,True);
	set_ScrollPartVisible(EXFILEVIEWLib.ScrollBarEnum.exHScroll,EXFILEVIEWLib.ScrollPartEnum.exRightB5Part,True);
	ColumnAutoResize := False;
	set_ColumnWidth('Name',256);
end
4
Is there any option to highligth the column from the cursor - point
with AxExFileView1 do
begin
	set_Background(EXFILEVIEWLib.BackgroundPartEnum.exCursorHoverColumn,$ffffff);
end
3
Is there any option to highligth the column from the cursor - point
with AxExFileView1 do
begin
	VisualAppearance.Add(1,'c:\exontrol\images\normal.ebn');
	set_Background(EXFILEVIEWLib.BackgroundPartEnum.exCursorHoverColumn,$1000000);
end
2
How do I change the visual aspect of the close button in the filter bar, using EBN

with AxExFileView1 do
begin
	VisualAppearance.Add(1,'c:\exontrol\images\normal.ebn');
	set_Background(EXFILEVIEWLib.BackgroundPartEnum.exFooterFilterBarButton,$1000000);
	set_ColumnFilterButton('Name',True);
	set_ColumnFilterType('Name',EXFILEVIEWLib.FilterTypeEnum.exPattern);
	set_ColumnFilter('Name','*.exe');
	ApplyFilter();
end
1
How do I change the visual aspect of the drop down filter button, using EBN

with AxExFileView1 do
begin
	VisualAppearance.Add(1,'c:\exontrol\images\normal.ebn');
	set_Background(EXFILEVIEWLib.BackgroundPartEnum.exHeaderFilterBarButton,$1000000);
	set_ColumnFilterButton('Name',True);
end